home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / postnuke_detect.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  95 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4.  
  5. if(description)
  6. {
  7.  script_id(15721);
  8.  script_version("$Revision: 1.1 $");
  9.  
  10.  name["english"] = "PostNuke Detection";
  11.  
  12.  script_name(english:name["english"]);
  13.  
  14.  desc["english"] = "
  15. The remote host is running PostNuke, a web content manager written in PHP.
  16. See http://www.postnuke.com for more information.
  17.  
  18.  
  19. Risk factor: None";
  20.  
  21.  script_description(english:desc["english"]);
  22.  
  23.  summary["english"] = "Detects the presence of PostNuke";
  24.  
  25.  script_summary(english:summary["english"]);
  26.  
  27.  script_category(ACT_GATHER_INFO);
  28.  
  29.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  30.  family["english"] = "CGI abuses";
  31.  family["francais"] = "Abus de CGI";
  32.  script_family(english:family["english"], francais:family["francais"]);
  33.  script_dependencie("http_version.nasl");
  34.  script_require_ports("Services/www", 80);
  35.  exit(0);
  36. }
  37.  
  38. #
  39. # The script code starts here
  40. #
  41.  
  42.  
  43. include("http_func.inc");
  44. include("http_keepalive.inc");
  45.  
  46. port = get_http_port(default:80);
  47.  
  48. if(!get_port_state(port))exit(0);
  49. if(!can_host_php(port:port))exit(0);
  50.  
  51. dirs = "";
  52.  
  53.  
  54.  
  55.  
  56. function check(loc)
  57. {
  58.  req = http_get(item:string(loc, "/index.php?module=Navigation"), port:port);
  59.  
  60.  r = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  61.  if( r == NULL )exit(0);
  62.  if('PostNuke' >< r && egrep(pattern:"<meta name=.generator. content=.PostNuke", string:r) )
  63.  {
  64.     version_str = egrep(pattern:"<meta name=.generator. content=.PostNuke", string:r);
  65.     version_str = chomp(version_str);
  66.      version = ereg_replace(pattern:".*content=.PostNuke ([0-9.]*) .*", string:version_str, replace:"\1");
  67.     if ( version == version_str ) version = "unknown";
  68.     if ( loc == "" ) loc = "/";
  69.     set_kb_item(name:"www/" + port + "/postnuke",
  70.             value:version + " under " + loc );
  71.     
  72.     dirs += " - " + loc + '\n';
  73.  }
  74. }
  75.  
  76. foreach dir (cgi_dirs())
  77. {
  78.  check(loc:dir);
  79. }
  80.  
  81. if ( dirs ) 
  82. {
  83. report = "
  84. The remote host is running PostNuke, a web content manager written in PHP.
  85. See http://www.postnuke.com for more information.
  86.  
  87. PostNuke is installed under the following location(s) :
  88.  
  89. " + dirs + "
  90.  
  91. Risk Factor : None";
  92.  security_note(port:port, data:report);
  93. }
  94.  
  95.